home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 September / PCWorld_2002-09_cd.bin / Software / Vyzkuste / httrack / httrack-3.20RC4.exe / {app} / src / htstools.h < prev    next >
C/C++ Source or Header  |  2002-07-09  |  4KB  |  138 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       various tools (filename analyzing ..)                  */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39. #ifndef HTSTOOLS_DEFH
  40. #define HTSTOOLS_DEFH 
  41.  
  42. /* specific definitions */
  43. #include <stdio.h>
  44. #include <stdlib.h>
  45. #include "htsbase.h"
  46. #include "htscore.h"
  47.  
  48. #if HTS_WIN
  49. #else
  50. #include <dirent.h>
  51. #include <unistd.h>
  52. #include <sys/stat.h>
  53. #endif
  54.  
  55. int ident_url_relatif(char *lien,char* urladr,char* urlfil,char* adr,char* fil);
  56. int lienrelatif(char* s,char* link,char* curr);
  57. int link_has_authority(char* lien);
  58. void long_to_83(int mode,char* n83,char* save);
  59. void longfile_to_83(int mode,char* n83,char* save);
  60. HTS_INLINE int __rech_tageq(const char* adr,const char* s);
  61. HTS_INLINE int __rech_tageqbegdigits(const char* adr,const char* s);
  62. #define rech_tageq(adr,s) \
  63.   ( \
  64.     ( (*((adr)-1)=='<') || (is_space(*((adr)-1))) ) ? \
  65.     ( \
  66.       (streql(*(adr),*(s))) ?   \
  67.       (__rech_tageq((adr),(s))) \
  68.       : 0                       \
  69.     ) \
  70.     : 0\
  71.   )
  72. #define rech_tageqbegdigits(adr,s) \
  73.   ( \
  74.     ( (*((adr)-1)=='<') || (is_space(*((adr)-1))) ) ? \
  75.     ( \
  76.       (streql(*(adr),*(s))) ?   \
  77.       (__rech_tageqbegdigits((adr),(s))) \
  78.       : 0                       \
  79.     ) \
  80.     : 0\
  81.   )
  82. //HTS_INLINE int rech_tageq(const char* adr,const char* s);
  83. HTS_INLINE int rech_sampletag(const char* adr,const char* s);
  84. HTS_INLINE int check_tag(char* from,const char* tag);
  85. int verif_backblue(char* base);
  86. int verif_external(int nb,int test);
  87.  
  88. int istoobig(LLint size,LLint maxhtml,LLint maxnhtml,char* type);
  89.  
  90. int hts_buildtopindex(char* path,char* binpath);
  91.  
  92.  
  93.  
  94. // Portable directory find functions
  95.  
  96. #if HTS_WIN
  97.  
  98. typedef struct {
  99.   WIN32_FIND_DATA hdata;
  100.   HANDLE handle;
  101. } find_handle_struct;
  102.  
  103.  
  104. #else
  105.  
  106. typedef struct {
  107.   DIR * hdir;
  108.   struct dirent* dirp;
  109.   struct stat filestat;
  110.   char path[2048];
  111. } find_handle_struct;
  112.  
  113. #endif
  114.  
  115. typedef find_handle_struct* find_handle;
  116.  
  117. typedef struct topindex_chain {
  118.   char name[2048];                    /* path */
  119.   struct topindex_chain* next;        /* next element */
  120. } topindex_chain  ;
  121.  
  122.  
  123. // Directory find functions
  124. find_handle hts_findfirst(char* path);
  125. int hts_findnext(find_handle find);
  126. int hts_findclose(find_handle find);
  127. //
  128. char* hts_findgetname(find_handle find);
  129. int hts_findgetsize(find_handle find);
  130. int hts_findisdir(find_handle find);
  131. int hts_findisfile(find_handle find);
  132. int hts_findissystem(find_handle find);
  133.  
  134.  
  135.  
  136.  
  137. #endif
  138.